home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00112_DrawTools.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  4.8 KB  |  186 lines

  1. --
  2. -- Drawing tools class for the standard paint
  3. --
  4.  
  5. -- this is tied to the score in the nystrom UI setup
  6.  
  7. property ancestor
  8. property toolSprites
  9. property currentTool
  10. property canvasName
  11. property canvasSprite
  12.  
  13. property startingPict  -- if startingPict exists, then we will replace the canvas with it on reset.
  14.  
  15.  
  16.  
  17. on new me
  18.   -- initialize constants:
  19.   -- default mode
  20.   set currentTool = "freeHandLine"
  21.   set toolSprites = []
  22.   
  23.   set ancestor = new (script "ScoreTools")
  24.   
  25.   set toolSprites = findColoredSprites(ancestor, 2, 1)
  26.   
  27.   if toolSprites = [] then
  28.     alert "The tool sprites are not colored correctly in the score, they should be #2, green..."
  29.     return 0
  30.   end if
  31.   
  32.   -- put "tools: looking for the canvas..." & findColoredSprites(me, 1, 0)
  33.   
  34.   set canvasName = the name of member (the memberNum of sprite getAt(findColoredSprites(me, 1, 1), 1))
  35.   set canvasSprite = sprite getAt(findColoredSprites(me, 1, 1), 1)
  36.   
  37.   return me
  38. end
  39.  
  40.  
  41. -- if this modification script is used, be sure that the bitmap cast member has a unique name!  There is currently no check for it.
  42. -- also, the bitmap image must be 468 x 345
  43.  
  44. on initStartingPict me, bmpMemberName
  45.   set startingPict = bmpMemberName
  46. end
  47.  
  48.  
  49.  
  50. on getCurrentTool me
  51.   return currentTool
  52. end
  53.  
  54.  
  55. -- handle the mousedowns right here
  56. on mouseDownTools me, spr
  57.   if toolSprites = [] then return 0
  58.   
  59.   if getPos(toolSprites, spr) > 0 then
  60.     -- we hit a tool sprite
  61.     
  62.     -- each tool member must be named for a specific mode of the xtraDraw xtra
  63.     set oldTool = currentTool
  64.     
  65.     --JCODE
  66.     set theMemberNum = the memberNum of sprite spr
  67.     set currentTool = item 1 of the name of member theMemberNum of castLib (the castlibNum of sprite spr)
  68.     --END JCODE
  69.     put "that tool is the: " & currentTool
  70.     
  71.     -- set the right cursor
  72.     set topCurs = the number of member (string(currentTool & "Curs"))
  73.     set mask = the number of member (string(currentTool & "Curs,mask"))
  74.     set the cursor of sprite canvasSprite = [topCurs, mask]
  75.     
  76.     -- special case
  77.     if currentTool = "reset" then
  78.       bounceButton(me, "reset,down", spr)
  79.       updateStage
  80.       
  81.       clearCanvas(me)
  82.       set currentTool = oldTool
  83.     end if
  84.     
  85.     case currentTool of
  86.         
  87.       "text":
  88.         set the drawingMode of member canvasName = "text"
  89.         
  90.       "pencil":
  91.         put "i am doing the pencil..."
  92.         set the drawingMode of member canvasName = "freeHandLine"
  93.         set the canvasPenSize of member canvasname = 1
  94.         
  95.       "brush":
  96.         set the drawingMode of member canvasName = "freeHandLine"
  97.         set the canvasPenSize of member canvasname = 2
  98.         
  99.       "fatBrush":
  100.         set the drawingMode of member canvasName = "freeHandLine"
  101.         set the canvasPenSize of member canvasname = 4
  102.         
  103.       "fill":
  104.         set the drawingMode of member canvasName = "fill"
  105.         
  106.       "eraser":
  107.         set the drawingMode of member canvasName = "freeHandLine"
  108.         set the canvasPenSize of member canvasname = 16
  109.         SetForeColor(member canvasName, 255, 255, 255)
  110.         
  111.       "circle":
  112.         set the drawingMode of member canvasName = "framedCircle"
  113.         set the canvasPenSize of member canvasname = 2
  114.         
  115.       "square":
  116.         set the drawingMode of member canvasName = "framedSquare"
  117.         set the canvasPenSize of member canvasname = 2
  118.         
  119.       "filledSquare":
  120.         set the drawingMode of member canvasName = "filledSquare"
  121.         --set the canvasPenSize of member canvasName = 
  122.         
  123.       "filledCircle":
  124.         set the drawingMode of member canvasName = "filledCircle"
  125.         
  126.         
  127.     end case
  128.     
  129.     -- now we should do a bounce of the button, and turn off the other buttons
  130.     radioToggle(me, toolSprites, spr, ",down")
  131.     
  132.     redraw(member canvasName)
  133.     
  134.     return 1
  135.   else
  136.     return 0
  137.   end if
  138. end
  139.  
  140.  
  141. on clearCanvas me
  142.   if voidP (startingPict) then
  143.     -- if there is no staring pict then simply clear the canvas:
  144.     set theOldMode = the drawingMode of member canvasName
  145.     set the drawingMode of member canvasName = "fill"
  146.     
  147.     clear(member canvasName)
  148.     redraw(member canvasName)
  149.     set the drawingMode of member canvasName = theOldMode
  150.   else
  151.     -- if there is a startingpict then redraw it (written over the current canvas):
  152.     set the drawingMode of member canvasName = "fill"
  153.     SetImage (member canvasName, member startingPict, "fixed")
  154.   end if
  155.   return 1
  156. end
  157.  
  158.  
  159. on setCanvasSize me, h, w
  160.   set the canvasHeight of member canvasName to h
  161.   set the canvasWidth of member canvasName to w
  162. end
  163.  
  164.  
  165.  
  166. on directOn me
  167.   set the directToStage of member canvasName to TRUE
  168. end
  169.  
  170.  
  171. on directOff me
  172.   set the directToStage of member canvasName to FALSE
  173. end
  174.  
  175.  
  176. on clearCanvasCursor me
  177.   set the cursor of sprite canvasSprite = 0
  178. end
  179.  
  180.  
  181. on destruct me
  182.   if objectP (ancestor) then destruct (ancestor)
  183.   set ancestor = 0
  184. end
  185.  
  186.